home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 4 / MacFormat n. 4 (Spain) / MacFormat 4.bin / Demos / DiscoverIndia Demo / OnMove.dir / 00003.ls < prev    next >
Encoding:
Text File  |  1995-03-28  |  542 b   |  25 lines

  1. on stepMovie
  2.   if not rollOver(24) then
  3.     exit
  4.   end if
  5.   puppetSprite(24, 1)
  6.   set the castNum of sprite 24 to the number of cast "Redhand"
  7.   updateStage()
  8.   set exitFlag to 0
  9.   repeat while rollOver(24)
  10.     if the mouseDown then
  11.       if soundBusy(1) then
  12.         sound fadeOut 1, 2 * 60
  13.       end if
  14.       set exitFlag to 1
  15.       exit repeat
  16.     end if
  17.   end repeat
  18.   if exitFlag then
  19.     go("QuitReturnPlusOne", "Shiva.dir")
  20.   else
  21.     set the castNum of sprite 24 to the number of cast "Whitehand"
  22.     puppetSprite(24, 0)
  23.   end if
  24. end
  25.